home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / TUTORIAL.BIN / Driver.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-01-30  |  670 b   |  18 lines

  1. package symjava.sql;
  2.  
  3. import java.util.Properties;
  4.  
  5. public interface Driver {
  6.    Connection connect(String var1, Properties var2) throws SQLException;
  7.  
  8.    boolean acceptsURL(String var1) throws SQLException;
  9.  
  10.    DriverPropertyInfo[] getPropertyInfo(String var1, Properties var2) throws SQLException;
  11.  
  12.    int getMajorVersion();
  13.  
  14.    int getMinorVersion();
  15.  
  16.    boolean jdbcCompliant();
  17. }
  18.